-
I have the following HTML5 snippet in home-component.html: <div id="main-tv-cabinet"> <video id="tv" autoplay preload="auto" controls width="640" height="480" (ended)="onTvPreviewEnded()"> <source src="{{sermonForPreview}}" …
- 397 views
- 1 answers
- 0 votes
-
I have two components. One is search form and one is search form result. On click of button in search …
- 400 views
- 1 answers
- 0 votes
-
In Angular 9 reactive forms I have the following form: <form [formGroup]=”form” (ngSubmit)=”onSubmit()”> <label for=”active”>Active</label> <input id=”active” type=”checkbox” formControlName=”active”> <button …
- 361 views
- 2 answers
- 0 votes
-
I have code in Angular 9 to display table <table mat-table [dataSource]="quotes" > <ng-container matColumnDef="date"> <th mat-header-cell *matHeaderCellDef> Date </th> …
- 382 views
- 2 answers
- 0 votes